Logs viewer enhancements + responsive layout#92
Merged
Conversation
Full-screen responsive logs console, full-width-ish dashboard, log export (full history -> .log download), and in-log search (filter to matches over full history). Reuses the shared logs.html; no backend changes. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
5 tasks: widen dashboard, full-screen responsive logs console, full_url/ export_basename route context, export + search toolbar, live verification. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Enhancements to the redesigned UI (follow-on to the 1.4.0 redesign). Front-end only — no backend changes (export/search reuse the existing log endpoints with
tail=all); all in the sharedmanager/templates/logs.html+ two route context values + the dashboard CSS.What's new
60vh/1180pxcard; scales with window size..pagemax-width 1180 → 1600px (uses more of the screen).‹name›_v‹version›_‹UTC-timestamp›.log(client-side Blob).Implementation notes
logs.htmlserves both per-service (/services/~logs/view) and manager (/logs/view) logs, so both get every feature.startStream()(AbortController); search/export fetches are also abortable and guarded so a late result can't clobber the restarted tail.textContent/createTextNode; highlights are<mark>element nodes — neverinnerHTMLon log content.tests/manager_test/test_ui_redesign.py(17 pass); black + pylint clean.Built via spec → plan → subagent-driven development (docs under
docs/superpowers/). Whole-branch review: READY TO MERGE.